/* ===== GENEL ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
     font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
body {
    font-family: 'Poppins', sans-serif;
background: black;
    color: #ffc700;
}
a { text-decoration: none; }

/* ===== PREMIUM HEADER ===== */
.mehmet-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, #ff6a3d, #ffbe05, #ff5e3a);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease-in-out;
    padding: 8px 0;
    animation: fadeInDown 0.8s ease forwards;
}

/* Header animation */
@keyframes fadeInDown {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Container */
.mehmet-topbar .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

/* LOGO */
.mehmet-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
}
.mehmet-logo a:hover {
    transform: scale(1.08) rotate(-2deg);
    text-shadow: 0 4px 15px rgba(0,0,0,0.45);
}

.mehmet-logo img {
    height: 110px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
}
.mehmet-logo img:hover {
    transform: scale(1.05);
}

/* Logo alt yazısı */
.mehmet-logo span {
    font-size: 14px;
    color: #fffdd0;
    opacity: 0.9;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* SEARCH BAR */
.mehmet-search {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    backdrop-filter: blur(8px);
}
.mehmet-search input {
    width: 340px;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
}
.mehmet-search input:focus {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 106, 61,0.4);
}
.mehmet-search button {
    padding: 12px 25px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: #ff6a3d;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.mehmet-search button:hover {
    background: #ff865b;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* MENU */
.mehmet-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}
.mehmet-menu ul li a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}
.mehmet-menu ul li a:hover {
    transform: translateY(-3px);
    color: #ffe7d6;
}
.mehmet-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    bottom: -6px;
    left: 0;
    transition: width 0.35s ease;
}
.mehmet-menu ul li a:hover::after {
    width: 100%;
}

/* USER & CART */
.mehmet-usercart {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dropdown */
.mehmet-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    min-width: 200px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    padding: 12px 0;
    transition: all 0.35s ease;
}
.mehmet-user:hover .mehmet-dropdown {
    display: block;
    animation: drop 0.35s ease forwards;
}
@keyframes drop {
    0% { transform: translateY(-15px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.mehmet-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #444;
    transition: all 0.3s ease;
}
.mehmet-dropdown li a:hover {
    background: #ff6a3d;
    color: #fff;
    border-radius: 8px;
}

/* CART */
.mehmet-cart a {
    position: relative;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}
.mehmet-cart a:hover {
    transform: scale(1.15);
}
#cart-count {
    position: absolute;
    top: -6px;
    right: -12px;
    background: #fff;
    color: #ff6a3d;
    padding: 3px 7px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* MOBILE */
.mehmet-mobile-menu {
    display: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mehmet-mobile-menu:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .mehmet-menu, .mehmet-search { display: none; }
    .mehmet-mobile-menu { display: block; }
}

@media screen and (max-width: 576px) {
    .mehmet-logo img { height: 70px; }
    .mehmet-search input { width: 240px; padding: 10px 15px; }
    .mehmet-search button { padding: 10px 18px; }
}

/* ===== PREMIUM SLIDER ===== */
.mehmet-slider {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 25px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 106, 61,0.5) transparent;
}

.mehmet-slider::-webkit-scrollbar {
    height: 8px;
}
.mehmet-slider::-webkit-scrollbar-thumb {
    background: rgba(255,106,61,0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mehmet-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(255,106,61,0.9);
}

.mehmet-slide {
    min-width: 260px;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    background: #fff;
}
.mehmet-slide:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.mehmet-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.mehmet-slide:hover img {
    transform: scale(1.05);
}

.mehmet-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    transition: all 0.3s ease;
}
/* Slider yazılarında taşmayı önle ve ... ekle */
.mehmet-slide-info h3,
.mehmet-slide-info p {
    overflow: hidden;       /* taşan kısmı gizle */
    white-space: nowrap;    /* tek satırda kalmasını sağla */
    text-overflow: ellipsis; /* taşan kısmı ... ile göster */
}


/* Mobilde daha küçük */
@media screen and (max-width: 576px) {
    .mehmet-slide { min-width: 200px; max-width: 230px; }
    .mehmet-slide img { height: 150px; }
}

/* ===== SAF MİNİMALİZM: BEYAZ KART, GOLD VURGULAR ===== */

.mehmet-kategoriler ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 0;
    justify-content: center;
}

.kategori-card {
    list-style: none;
    width: 220px;
    /* SAF BEYAZ ZEMİN */
    background: white; 
    border-radius: 10px;
    /* Başlangıçta neredeyse görünmez, çok ince bir sınır */
 border: 1px solid #ffc700;
    /* Çok hafif, temiz bir gölge */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    /* Yumuşak geçişler */
    transition: all 0.25s ease-out; 
    cursor: pointer;
    position: relative;
}

/* Yükselme veya renk değişimi yok, sadece Gold Parlama */
.kategori-card:hover {
    transform: none; /* Kart yerinde kalsın */
    border-color: #D4AF37; /* Çok ince gold çerçeve */
    /* Hafif, zarif gold gölge */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); 
}

.kategori-card a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    /* Metin Rengi: Klasik Siyah */
    color: black; 
    font-weight: 600;
    transition: all 0.25s ease-out;
    text-decoration: none;
}

.kategori-card:hover a { 
    /* Metin rengi Hover'da gold olsun */
    color: #D4AF37; 
}

.kategori-img {
    flex-shrink: 0;
}

.kategori-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    /* Resmin çevresinde Gold vurgu yok, temiz kalsın */

    transition: all 0.25s ease-out;
}

.kategori-card:hover .kategori-img img {
    /* Hoverda sadece sınır rengi Gold'a dönsün */
    border-color: #D4AF37; 
    transform: none; /* Resim büyümesi/dönmesi yok */
}

.kategori-name {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Mobilde ayarlama */
@media screen and (max-width: 576px) {
    .kategori-card { width: 100%; }
}
/* ===== SAF MİNİMALİZM: BEYAZ KART, GOLD VURGULAR (ÜRÜNLER) ===== */

.mehmet-populer .mehmet-urunler {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    padding: 25px 0;
    scroll-behavior: smooth;
}

/* Ürün Kartı */
.mehmet-urun {
    /* SAF BEYAZ ZEMİN */
    background: black; 
    border-radius: 12px; /* Daha modern köşe */
    padding: 20px;
    text-align: center;
    /* Başlangıçta çok hafif gölge */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    border: 1px solid #ffc700; /* Çok ince, temiz sınır */
    
    transition: all 0.25s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Minimalist hover: Yükselme veya renk değişimi yok, sadece Gold Parlama */
.mehmet-urun:hover {
    transform: none; /* Yükselme/büyüme yok */
    border-color: #D4AF37; /* Çok ince gold çerçeve */
    /* Hafif, zarif gold gölge */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); 
    background: #ffffff; /* Arka plan rengini sabit tutar */
}

/* Ürün resmi */
.mehmet-urun img {
    width: 100%;
    border-radius: 8px; /* Daha az yuvarlak, sade */
    margin-bottom: 12px;
    transition: transform 0.25s ease;
}

/* Minimalist hover: Resim hareketi yok */
.mehmet-urun:hover img {
    transform: none; 
}

/* Ürün başlığı */
.mehmet-urun h3 {
    font-size: 17px;
    /* Metin Rengi: Klasik Siyah */
    color: #ffc700; 
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: color 0.25s ease-out;
}
.mehmet-urun:hover h3 {
    color: #333; /* Hover'da belirginleşebilir */
}

/* Ürün fiyatı */
.mehmet-urun p {
    font-weight: 600;
    margin-bottom: 12px;
    /* Fiyat Rengi: Metalik Gold Vurgu */
    color: #D4AF37; 
    font-size: 16px;
    transition: color 0.25s ease-out;
}
.mehmet-urun:hover p {
    color: #c9a73e; /* Hover'da gold biraz koyulaşır */
}

/* Buton */
.mehmet-urun button {
    padding: 10px 20px;
    /* Buton Rengi: Ana Gold Rengi */
    background: #D4AF37; 
    border: none;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* Hafif gold gölge */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); 
    transition: all 0.25s ease-out;
}
.mehmet-urun button:hover {
    /* Hover'da gold tonu biraz açılır */
    background: #FFD700; 
    transform: none; /* Büyüme yok */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hover parlama efekti (Minimalizm için kaldırıldı/düzenlendi) */
.mehmet-urun::before {
    content: none; /* Parıldama efekti tamamen kaldırıldı */
}
.mehmet-urun:hover::before {
    content: none;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .mehmet-populer .mehmet-urunler {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    .mehmet-urun img { height: 160px; object-fit: cover; }
    .mehmet-urun h3 { font-family: "Poppins", sans-serif; font-weight: 400; }
    .mehmet-urun p { font-size: 15px; }
    .mehmet-urun button { padding: 8px 16px; font-size: 14px; }
}

/* =====================================
   🔥 PREMIUM FOOTER TASARIMI
===================================== */

.mehmet-footer {
    background: black;
    color: black;
    padding: 70px 20px 25px;
    font-family: 'Poppins', sans-serif;
    border-top: 5px solid #ffc700;
}

.mehmet-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    max-width: 1250px;
    margin: auto;
}

/* ===== Başlıklar ===== */
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 18px;
  font-weight: 300;
    color: #a38003;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #a38003;
    bottom: -6px;
    left: 0;
    border-radius: 10px;
}

/* ===== Linkler ===== */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a38003;
    font-size: 15px;
    text-decoration: none;
    transition: .25s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #686021;
    transform: translateX(5px);
}

/* ===== Logo ===== */
.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
    filter: brightness(90%);
}

/* ===== Açıklama Metni ===== */
.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #a38003;
}

/* ===== Sosyal Medya ===== */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b2b2b;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    background: #ffc700;
    transform: scale(1.18) translateY(-3px);
}

/* ===== Alt Yazı ===== */
.footer-bottom {
    text-align: center;
    margin-top: 45px;
    font-size: 14px;
    color: #888;
    padding-top: 18px;
    border-top: 1px solid #333;
}

/* =====================================
   📱 RESPONSIVE
===================================== */
@media screen and (max-width: 992px) {
    .mehmet-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .mehmet-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}


/* Slider container */
.mehmet-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

/* Chrome, Safari, Edge için */
.mehmet-slider::-webkit-scrollbar {
    height: 8px; /* yatay scrollbar yüksekliği */
}
.mehmet-slider::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1); /* arka plan rengi */
    border-radius: 10px;
}
.mehmet-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* şık gradient */
    border-radius: 10px;
}

/* Firefox için */
.mehmet-slider {
    scrollbar-width: thin;
    scrollbar-color: #ffc700 rgba(0,0,0,0.1);
}


.mehmet-kategoriler .mehmet-title-line {
    width: 20%;
    height: 5px;
    background: linear-gradient(90deg, #ffc700, #a38004);
    border-radius: 5px;
    margin-bottom: 15px;
        margin-left: 10px;
}
.mehmet-populer .mehmet-title-line {
    width: 20%;
    height: 5px;
    background: linear-gradient(90deg, #ffc700, #a38004);
    border-radius: 5px;
    margin-bottom: 15px;
        margin-left: 10px;
}
/* === ÜRÜN DETAY SAYFASI === */

.mehmet-urun-detay {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
}

/* Ürün görseli */
.mehmet-urun-gorsel img {
    width: 100%;
    max-width: 450px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mehmet-urun-gorsel img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Ürün Bilgi Alanı */
.mehmet-urun-bilgi {
    flex: 1;
    max-width: 550px;
}

.mehmet-urun-bilgi h1 {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

/* Fiyat */
.mehmet-fiyat {
    font-size: 36px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 20px;
}

/* Adet seçimi */
.mehmet-urun-bilgi input[type='number'] {
    width: 80px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    border: 2px solid #ddd;
    transition: border 0.3s ease;
}

.mehmet-urun-bilgi input[type='number']:focus {
    border-color: #ff5722;
    outline: none;
}

/* Sepete ekle butonu */
.mehmet-btn {
    background: linear-gradient(90deg,#ffc700,#f8c616);
    padding: 14px 35px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mehmet-btn:hover {
    transform: scale(1.04);
    background: linear-gradient(90deg,#ffc700,#f8c616);
    box-shadow: 0 6px 20px rgba(255, 77, 46, 0.35);
}

/* Açıklama */
.mehmet-aciklama {
    margin-top: 35px;
}

.mehmet-aciklama h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mehmet-aciklama p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* === MOBILE OPTIMIZATION === */
@media screen and (max-width: 992px) {

    .mehmet-urun-detay {
        flex-direction: column;
        text-align: center;
    }

    .mehmet-urun-bilgi {
        max-width: 100%;
        text-align: center;
    }

    .mehmet-btn {
        width: 100%;
        max-width: 300px;
    }
}



.mehmet-kategori .mehmet-urunler {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.mehmet-kategori .mehmet-urun {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    padding: 15px;
    width: calc(25% - 20px); /* 4 kart yan yana */
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mehmet-kategori .mehmet-urun:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mehmet-kategori .mehmet-urun img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.mehmet-kategori .mehmet-urun:hover img {
    transform: scale(1.05);
}

.mehmet-kategori .mehmet-urun h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mehmet-kategori .mehmet-urun p {
    font-weight: bold;
    color: #ffc700;
    margin-bottom: 10px;
    font-size: 15px;
}

.mehmet-kategori .mehmet-urun form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mehmet-kategori .mehmet-urun input[type="number"] {
    width: 55px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.mehmet-kategori .mehmet-urun button {
    background: #ffc700;
    border: none;
    color: #fff;
    padding: 7px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mehmet-kategori .mehmet-urun button:hover {
    background: #e8431f;
}

/* Mobil duyarlılık */
@media screen and (max-width: 992px){
    .mehmet-kategori .mehmet-urun {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 576px){
    .mehmet-kategori .mehmet-urun {
        width: 100%;
        padding: 12px;
    }

    .mehmet-kategori .mehmet-urun img {
        height: 220px;
    }

    .mehmet-kategori .mehmet-urun h3 {
        font-size: 17px;
    }

    .mehmet-kategori .mehmet-urun p {
        font-size: 16px;
    }

    .mehmet-kategori .mehmet-urun button {
        padding: 8px 16px;
    }
}

.mehmet-title-line {
    width: 60px;           /* Çizgi uzunluğu */
    height: 4px;           /* Çizgi kalınlığı */
    background: #ffc700;   /* Turuncu-kırmızı ton */
    margin: 10px 0 20px 20px;  /* Üst-boşluk, alt boşluk ve soldan biraz boşluk */
    border-radius: 2px;    /* Hafif yuvarlatma */
}

/* Mobilde soldan biraz daha az boşluk */
@media screen and (max-width: 576px) {
    .mehmet-title-line {
        margin-left: 10px;
    }
}


/* Arama Sayfası Ürün Kartları */
.mehmet-urunler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* Ürün Kartı */
.mehmet-urun-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.mehmet-urun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.mehmet-urun-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.mehmet-urun-card h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
    color: #333;
}

.mehmet-urun-card .mehmet-fiyat {
    font-size: 15px;
    font-weight: bold;
    color: #ffc700;
    margin-bottom: 10px;
}

.mehmet-urun-card form {
    display: flex;
    gap: 5px;
    align-items: center;
}

.mehmet-urun-card input[type="number"] {
    width: 50px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: center;
}

.mehmet-urun-card button {
    background: #ffc700;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mehmet-urun-card button:hover {
    background: black;
}

/* Mobil uyum */
@media screen and (max-width: 600px) {
    .mehmet-urun-card img {
        height: 120px;
    }
}

/* Sepet Sayfası */
.mehmet-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
}

.mehmet-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

/* Sepet Tablosu */
.mehmet-sepet-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.mehmet-sepet-table th,
.mehmet-sepet-table td {
    padding: 12px 10px;
    text-align: center;
    vertical-align: middle;
}

.mehmet-sepet-table th {
    background: #f1f1f1;
    font-weight: 600;
    border-radius: 10px;
}

.mehmet-sepet-table tr {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mehmet-sepet-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mehmet-sepet-table img {
    border-radius: 10px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Adet input ve butonlar */
.mehmet-sepet-table input[type="number"] {
    width: 60px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: center;
}

.mehmet-sepet-table button {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mehmet-sepet-table button:hover {
    opacity: 0.85;
}

.mehmet-sepet-table .sil-btn {
    background: #e74c3c;
    color: #fff;
}

.mehmet-sepet-table .guncelle-btn {
    background: #ffc700;
    color: #fff;
}

/* Sepet toplam bölümü */
.mehmet-sepet-total {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 400px;
    margin-left: auto;
}

.mehmet-sepet-total p {
    font-size: 16px;
    margin-bottom: 8px;
}

.mehmet-sepet-total h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.mehmet-sepet-total a button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Mobil uyum */
@media screen and (max-width: 768px) {
    .mehmet-sepet-table th,
    .mehmet-sepet-table td {
        font-size: 14px;
        padding: 8px;
    }

    .mehmet-sepet-table img {
        width: 60px;
        height: 60px;
    }

    .mehmet-sepet-total {
        max-width: 100%;
    }
}

/* Giriş / Kayıt Sayfası */
.mehmet-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background: black;
}

.mehmet-auth-box {
    background: rgba(0, 0, 0, 0.6); /* Siyahın %60 opak versiyonu */
    backdrop-filter: blur(10px); /* Bulanıklık efekti */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: #fff; /* Yazılar okunaklı olsun */
}


.mehmet-auth-box h1 {
    margin-bottom: 25px;
    font-size: 26px;
    color: #ffc700;
}

.mehmet-auth-box form {
    display: flex;
    flex-direction: column;
}

.mehmet-auth-box label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
    color: #ffc700;
}

.mehmet-auth-box input {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}



.mehmet-auth-alt {
    margin-top: 15px;
    font-size: 14px;
}

.mehmet-auth-alt a {
    color: #ffc700;
    text-decoration: none;
}

.mehmet-auth-mesaj {
    color: green;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Mobil Uyum */
@media screen and (max-width: 480px) {
    .mehmet-auth-box {
        padding: 30px 20px;
    }
}

